home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_11 / 8n11088a < prev    next >
Text File  |  1990-09-16  |  170b  |  9 lines

  1.  
  2.     List l;
  3.     // fill the list with integers using List::add()
  4.     ...
  5.     It i( l);    // bind the iterator to the list l
  6.     while( !i.isend() )
  7.         printf( "%d\n", i.get() );
  8.  
  9.